home *** CD-ROM | disk | FTP | other *** search
- /* simple ARexx install script
-
- -- This script will copy the socket.lib to the lib: directory and
- copy and display program to the c: directory for viewing AirMail
- screen shots. If you already have newer versions then ignore the
- install script
- --
- */
-
- address command
- say 'Creating directory ENVARC:AirMail'
- 'makedir ENVARC:AirMail'
- say
- say 'Copy socket.library v1.0 to Lib: (y/n)'
- pull ans
- if ans = 'Y' then
- 'copy libs/#?.lib lib:'
- endif
- say;
- say 'Copy display v38.9 to C: (y/n)'
- pull ans
- if ans = 'Y' then
- 'copy libs/display c:'
- endif
-
- say 'Installation Complete.'
-